home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 24 / Amiga Format AFCD24 (Feb 1998, Issue 108).iso / -in_the_mag- / emulation / amiga / uae-0.7.0b2 / src / od-generic / joystick.c < prev    next >
C/C++ Source or Header  |  1998-01-20  |  463b  |  35 lines

  1.  /* 
  2.   * UAE - The Un*x Amiga Emulator
  3.   * 
  4.   * Joystick emulation stubs
  5.   * 
  6.   * Copyright 1997 Bernd Schmidt
  7.   */
  8.  
  9. #include "sysconfig.h"
  10. #include "sysdeps.h"
  11.  
  12. #include "config.h"
  13. #include "options.h"
  14. #include "memory.h"
  15. #include "custom.h"
  16. #include "joystick.h"
  17.  
  18. int nr_joysticks;
  19.  
  20. void read_joystick(int nr, unsigned int *dir, int *button)
  21. {
  22.     *dir = 0;
  23.     *button = 0;
  24. }
  25.  
  26. void init_joystick(void)
  27. {
  28.     nr_joysticks = 0;
  29. }
  30.  
  31. void close_joystick(void)
  32. {
  33. }
  34.  
  35.